Use Unicode apostrophes in new strings
authorPiotr Drąg <piotrdrag@gmail.com>
Thu, 20 Sep 2018 17:01:14 +0000 (19:01 +0200)
committerPiotr Drąg <piotrdrag@gmail.com>
Thu, 20 Sep 2018 17:01:14 +0000 (19:01 +0200)
See https://developer.gnome.org/hig/stable/typography.html

https://bugzilla.gnome.org/show_bug.cgi?id=772371

gdk/gdkdrop.c
gdk/win32/gdkhdataoutputstream-win32.c
gtk/gtktreelistmodel.c

index f7f812a19eaf172e1db8db27b45e8ab4a2ad680a..643a74d790984c60bbf5b4f43ec7a34d45d99755 100644 (file)
@@ -107,7 +107,7 @@ gdk_drop_read_local_async (GdkDrop             *self,
   if (priv->drag == NULL)
     {
       g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
-                                     _("Drag'n'drop from other applications is not supported."));
+                                     _("Drag’n’drop from other applications is not supported."));
       g_object_unref (task);
       return;
     }
index b6cfb9745f367ddd6f9e0411863274e9a5867564..aa10ab415f1cd7dc712c78cc763000efb42bb826 100644 (file)
@@ -201,7 +201,7 @@ gdk_win32_hdata_output_stream_close (GOutputStream  *output_stream,
       if (priv->handle_is_buffer)
         {
           g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
-                               _("Can't transmute a single handle"));
+                               _("Cant transmute a single handle"));
           return FALSE;
         }
 
index 3848e12e93079b314a804699f98b8ba08bd7e3e3..186a25b967b7477955d7e59263702c026ba0728b 100644 (file)
@@ -1045,7 +1045,7 @@ gtk_tree_list_row_class_init (GtkTreeListRowClass *class)
   row_properties[ROW_PROP_CHILDREN] =
       g_param_spec_object ("children",
                            P_("Children"),
-                           P_("Model holding the row's children"),
+                           P_("Model holding the rows children"),
                            G_TYPE_LIST_MODEL,
                            GTK_PARAM_READABLE);